:root{
    --poppins: 'Poppins',sans-serif;
    --sans: 'Open sans',sans-serif;
    --green: #72b626;
    --black: #111;
    --nero: #252525;
    --transition: all  0.4s ease ;
    --orange:#fb5b5b;
    --black:#130f40;
    --light-color:#000000;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --border:.2rem solid rgba(0,0,0,.1);
    --outline:.1rem solid rgba(0,0,0,.1);
    --outline-hover:.2rem solid var(--black);
    --yellow:#f9d342;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--sans);
}
body {
    color: #fff;
    line-height: 1.5;
    background: var(--black);
    overflow-x: hidden;
}

.nav-item {
    text-align: center;
    position: relative;
    padding: 0.5rem;
}
.nav-item::after{
    content: "";
    position: absolute;
    bottom: 4px;
    left: 45%;
    transform: translateX(-50%);
    border-radius: 5px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: var(--transition);

}
.nav-item:hover::after{
    width:100px;
}
.nav-link{
    text-transform: uppercase;
    font-size: 1rem;
    transition: var(--transition);

}


.nav-link:hover{
    color:  var(--green);
	font-size: 18px;
	font-weight: bold;
}
.nav-active .nav-link{
    color: var(--green);
}
.back{
	background: url("images/pic1.jpg");

}
.w-100 {
	height: 100vh;
}
@media only screen and (max-width: 767px) {
	.navbar-nav.ml-auto {
		background: rgba(0, 0, 0, 0.5);
	}
	.navbar-nav a {
		font-size: 14px;
		font-weight: normal;
	}
}


.head-text{
    padding-top:80px;
    display: flex;
    flex-direction: column;
    align-content: center;
    height: 100px;
    width: 100%;
    color:#fff;
 

}
/* Contact Us*/


/* footer*/
.footer{
    background: #252525;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(2rem, 4fr));
    gap:1rem;
}

.footer .box-container .box h3{
    font-size: 2rem;
    color:whitesmoke;
    padding:1rem 0;
}

.footer .box-container .box h3 i{
    color:whitesmoke;
}

.footer .box-container .box .links{
    display: block;
    font-size: 1.3rem;
    color:whitesmoke;
    padding:0.2 rem 0;
}

.footer .box-container .box .links i{
    color:whitesmoke;
    padding-right: 2px;
}

.footer .box-container .box .links:hover {
    padding-right: 2px;
    font-size: large;
}


.footer .box-container .box p{
    line-height: 1;
    font-size: 1.8rem;
    color:whitesmoke;
    padding: 0.2rem 0;
}



.footer .box-container .box .share a:hover{
    background: var(--orange);
    color: #fff;
}

.footer .box-container .box .email{
    width: 100%;
    margin:.7rem 0;
    padding:1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color:whitesmoke;
    text-transform: none;
}

.footer .credit{
    color: whitesmoke;
    font-size: large;
    text-align: center;
    
}





@media (max-width:450px){

   

    .footer{
        text-align: center;
    }

    .footer .box-container .box .payment-img{
        margin: 2rem auto;
    }

}


